home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 July / EnigmA AMIGA RUN 09 (1996)(G.R. Edizioni)(IT)[!][issue 1996-07 & 08][EARSAN CD VIII].iso / earcd / libs / gtlsr376.rdm < prev    next >
Encoding:
Text File  |  1996-06-17  |  7.2 KB  |  184 lines

  1. Short:    GUI creation library (small & fast)
  2. Author:   P-O Yliniemi / Staffan Hämälä
  3. Uploader: peoyli@pluggnet.se (P-O Yliniemi)
  4. Version:  37.6
  5. Type:     util/libs
  6.  
  7. This is the user distribution of GadUtil library. If you are interested
  8. in developing programs that uses this library, you should get the
  9. distribution from dev/gui on Aminet.
  10.  
  11. For advanced "normal" users:
  12. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  13. Two versions of the library are included: one "normal" every-day-use
  14. version and one "debug" version. If you experience any trouble running
  15. a program that uses gadutil, you should rename the normal version in libs:,
  16. copy the debug version to libs, and rename it to gadutil.library. Reverse
  17. this to change back to the normal version. Don't forget to "flush" all
  18. unused libraries or reboot before testing the program again.
  19.  
  20. Changes overview:
  21. ~~~~~~~~~~~~~~~~~
  22. * 37.6  (15-Jun-96)
  23.     gu_Active in the structure that gg_UserData points to was not updated
  24.     when using any routine that used GU_SetGadgetAttrsA(). Now it checks
  25.     the gu_Active value to see if it is out of the gadget's limits.
  26.  
  27.     gng_Flags and gng_GadgetText is now cleared before creation of every
  28.     new gadget.
  29.  
  30.     The LAYOUTA_Spacing tag for LISTVIEW_KIND gadgets is now used to
  31.     determine the height of the gadget. If the height of a gadget should
  32.     be about 4 lines (GU_HeightFactor, 4), the height of the gadget is
  33.     calculated to 4*(font height+value of LAYOUTA_Spacing tag). The same
  34.     method is used for the GU_AddHeiLines tag.
  35.  
  36.     Hotkeys for LISTVIEW_KIND gadgets works as they should again. In v37.5
  37.     of GadUtil (and probably some earlier ones), the listview didn't scroll
  38.     down when you selected the next entry.
  39.  
  40.     Inserted pragmas and prototypes for tagcalls (pragmas only for SAS/C).
  41.     It is possible to create stub routines for the tagcalls for other
  42.     compilers by using fd2pragma 2.0.
  43.  
  44.     Inserted links to the include files in the index file for GadUtil.guide.
  45.  
  46. * 37.5  (29-May-96)
  47.     Bug in PROGRESS_KIND gadget removed. If the gadget was set to
  48.     show x/0 (also 0/0), a division by zero was done.
  49.  
  50.     Two new constants added to the include files: GADUTIL_VER and
  51.     GADUTIL_REV.
  52.     
  53.     Bug fixes in test (demo) programs. The FPF_DISKFONT flag in the
  54.     TextAttr structure was unset in all demo programs. Replaced the
  55.     manual version check in the demo programs with the GadUtil function
  56.     GU_CheckVersion. Removed unnecessary IDCMP flags from the demo
  57.     programs and replaced GadTools IDCMP with the GU_MinimumIDCMP tag.
  58.  
  59. * 37.4  (14-May-96)
  60.     Created a new gadget kind: LABEL_KIND. This gadget kind is used
  61.     to place text relative to other gadgets, bevel boxes, and other
  62.     texts. Can use the same type of shadows that the text for the
  63.     bevel box.
  64.  
  65.     Implemented a new function in the library: GU_CloseFont. Works
  66.     like graphics CloseFont, but takes the parameter in A0 instead
  67.     of A1.
  68.  
  69.     Replaced the list sort routine with a new one that sorts better.
  70.  
  71.     Wrote a new document, "GadUtil.index", that have a list over all
  72.     gadutil functions, sorted by what they do. There are also some
  73.     shortcuts to all tags for gadutil's own gadget kinds.
  74.  
  75.     Created two new flags for BEVELBOX_KIND and LABEL_KIND:
  76.     BB_3DTEXT - can be used as a replacement for GUBB_3DText, TRUE
  77.     LB_3DTEXT - can be used as a replacement for GULB_3DText, TRUE
  78.  
  79. * 37.3  (10-May-96)
  80.     Enforcer hits fixed in the code that handles the GU_AdjustLeft
  81.     and GU_AdjustRight tags.
  82.  
  83.     A new function to clear the inner part of a window was added.
  84.  
  85.     A new function to size (and move, if necessary) a window was
  86.     added.
  87.  
  88.     Bug fix in assembly language include file.
  89.  
  90. * 37.2  (02-May-96)
  91.     Started programming in StormC and did some tests with the library,
  92.     noticed that there was a couple of errors in some include files.
  93.  
  94.     GU_UpdateProgress was wrongly specified in the FD/clib files.
  95.     The output of GU_GetGadgetPtr was specified as (struct Gadget *),
  96.     this is now corrected.
  97.  
  98.     Included an example in C that uses the PROGRESS_KIND gadget.
  99.  
  100. * 37.1  (01-May-96)
  101.     IMAGE_KIND gadget bug fix. The color of the unselected image of
  102.     the gadget was wrong, if the image used more than 4 colors.
  103.  
  104. * 37.0  (29-Apr-96)
  105.     A new function that checks the library's revision added.
  106.     Two new tags added: GU_FractWidth and GU_FractHeight. Suggested
  107.     by Morten Amundsen.
  108.  
  109.     Some small bug fixes in 'C' include files (unterminated comments).
  110.     Cleaned up BetterTest.c a bit (removed some {}). Bug fix on the
  111.     last line of the example (GT_ReplyIMsg -> GU_ReplyIMsg).
  112.  
  113.     Added support for StormC in both installer script and include-
  114.     file installer. Created dictionary for StormC, so that all words
  115.     that belongs to GadUtil (functions, tags and constants) is shown
  116.     in another color.
  117.  
  118. * 36.60 (24-Feb-96)
  119.     Uses the screen's font as the gadget font if no GU_DefTextAttr or
  120.     GU_TextAttr tag is used. Bug fix from v36.59. Changed some docs,
  121.     assembled all examples,    changed installation scripts.
  122.  
  123. * 36.59 (06-Jan-96)
  124.     More docs completed (all docs, finally). Bug fix in the GU_AutoWidth,
  125.     GU_AdjustLeft and GU_AdjustRight tags. The underscore character was
  126.     counted as a normal one. This made gadgets without hotkeys one char
  127.     smaller than other gadgets. A new function that sorts one or two
  128.     lists was added. Some new constants added in include files.
  129.     Changed GU_MinimumIDCMP to support hotkeys. Changed PROGRESS_KIND
  130.     to use GU_GadgetText and GU_LocaleText. Uses the screen's font as
  131.     the gadget font if no GU_DefTextAttr or GU_TextAttr tag is used.
  132.  
  133. * 36.58 (01-Jan-96)
  134.     SLIDER_KIND and SCROLLER_KIND gadgets returned wrong result in
  135.     im->Code if the gadget was changes using the hotkey. Bug reported
  136.     by Lucasz Szelag.
  137.  
  138. * 36.57 (10-Dec-95)
  139.     Some more docs finished. A memory loss bug was fixed.
  140.  
  141. * 36.56 (10-Oct-95)
  142.     Changed some routines, so that hotkeys can't be used on disabled
  143.     gadgets. Made it possible to disable IMAGE_KIND, FILE_KIND and
  144.     DRAWER_KIND gadgets.
  145.  
  146. * 36.55 (30-Sep-95)
  147.     Bug fix in the hotkey part of the library. Wrong code were sent back
  148.     when using GU_LabelHotkey with a LISTVIEW_KIND gadget. A new gadget
  149.     kind was created, PROGRESS_KIND.
  150.  
  151. * 36.54 (06-Jul-95)
  152.     Added support for GU_AutoWidth to CYCLE_KIND gadgets.
  153.  
  154. * 36.53 (05-Jul-95) 
  155.     3 new tags and 4 new flags was added for the BEVELBOX_KIND gadget.
  156.     BEVELBOX_KIND gadgets can now have a shadow added to the text in the
  157.     border. The "sun" can be placed in 4 different places. GU_MinimumIDCMP
  158.     tag was added.
  159.  
  160. * 36.52 (25-Jun-95)
  161.     First public release. Some new flags for the BEVELBOX_KIND gadget was
  162.     added. Supports a total of 100 bevelbox kinds.
  163.  
  164.  
  165.  
  166.                                           P-O 960615
  167.                                           ~~~~~~~~~~
  168.  
  169.   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  170.   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  171.         Per-Olof Yliniemi                           Staffan Hämälä
  172.         Box 78                                      Pellovägen 268
  173.         S-980 61 Tärendö                            S-957 93 Pello
  174.         SWEDEN                                      SWEDEN
  175.  
  176.         email:                                      email:
  177.           peoyli@pluggnet.se                          staham@pluggnet.se
  178.  
  179.         phone:
  180.           +46-(0)978-20522
  181.  
  182.   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  183.   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  184.